/* * Author: Chris Seguin * * This software has been developed under the copyleft * rules of the GNU General Public License. Please * consult the GNU General Public License for more * details about use and distribution of this software. */ package org.acm.seguin.refactor; /** * Description of the Class * *@author Chris Seguin */ public class RefactoringException extends Exception { /** * Constructor for the RefactoringException object * *@param msg Description of Parameter */ public RefactoringException(String msg) { super(msg); } }